Stored Procedures [dbo].[BAEHistoryLoad]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@historyIdint4
SQL Script
create procedure [dbo].[BAEHistoryLoad] @historyId int as
SELECT * FROM History WHERE HistoryID = @historyId

GO
Uses